GET MEMBLOCK SIZE
This command will return the size of the specified memblock.
Return Integer=GET MEMBLOCK SIZE(Memblock Number)
Memblock Number
Integer
The memblock number
This command will return the size of the specified memblock
The size will be returned in bytes. The parameter must be an integer value.
MemblockNumber=1
MAKE MEMBLOCK MemblockNumber, 1024
rem Display data
cls
print "MEMBLOCK EXPRESSION DATA"
print
if MEMBLOCK EXIST(MemblockNumber)=1
print "memblock:";MemblockNumber
print "exist:";MEMBLOCK EXIST(MemblockNumber)
print "ptr:";GET MEMBLOCK PTR(MemblockNumber)
print "size:";GET MEMBLOCK SIZE(MemblockNumber)
endif
rem Delete memblocks
if MEMBLOCK EXIST(MemblockNumber)=1 then DELETE MEMBLOCK MemblockNumber
do
loop
end
MEMBLOCKS Commands Menu
Index